home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 30 / Mac Magazin and MacEasy Magazine CD - Issue 30.iso / utilities / Mac OS X / Load_Monitor / src / AboutBox / AboutBox.h next >
Encoding:
Text File  |  2002-01-09  |  438 b   |  27 lines

  1. /*
  2.  
  3. http://www.cocoadevcentral.com/tutorials/
  4.  
  5. */
  6.  
  7. #import <Cocoa/Cocoa.h>
  8.  
  9. @interface AboutBox : NSObject
  10. {
  11.     IBOutlet id appNameField;
  12.     IBOutlet id copyrightField;
  13.     IBOutlet id creditsField;
  14.     IBOutlet id versionField;
  15.     NSTimer *scrollTimer;
  16.     float currentPosition;
  17.     float maxScrollHeight;
  18.     NSTimeInterval startTime;
  19.     BOOL restartAtTop;
  20. }
  21.  
  22. + (AboutBox *)sharedInstance;
  23. - (IBAction)showPanel:(id)sender;
  24.  
  25. @end
  26.  
  27.